home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / mtank_sh.h < prev    next >
C/C++ Source or Header  |  1999-03-17  |  4KB  |  120 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Header File Name: mtank_sh.h
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer 
  8. // File Creation Date: 12/16/1997 
  9. // Date Last Modified: 03/18/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /* 
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. General purpose search functions used with the marine tank
  32. database.
  33. */
  34. // ----------------------------------------------------------- //
  35. #ifndef __MTANK_SH_HPP__
  36. #define __MTANK_SH_HPP__
  37.  
  38. #include "mtank.h"
  39. #include "cdate.h"
  40. #include "rbtree.h"
  41. #include "dllist.h"
  42. #include "btwalk.h"
  43.  
  44. // This class is used as a container to store the entry keys in
  45. // memory with as little overhead as possible.
  46. class MTankInMemCopy
  47. {
  48. public:
  49.   MTankInMemCopy() { }
  50.   ~MTankInMemCopy() { }
  51.   MTankInMemCopy(char *k, INT32 oa, INT32 cid);
  52.   
  53.   MTankInMemCopy(const MTankInMemCopy &ob) {
  54.     date = ob.date;
  55.     object_address = ob.object_address;
  56.     class_id = ob.class_id;
  57.   }
  58.   
  59.   void operator=(const MTankInMemCopy &ob) { 
  60.     date = ob.date;
  61.     object_address = ob.object_address;
  62.     class_id = ob.class_id;
  63.   }
  64.   
  65. public:
  66.   friend int operator==(const MTankInMemCopy &a, const MTankInMemCopy &b) {
  67.     return a.date == b.date;
  68.   }
  69.   
  70.   friend int operator!=(const MTankInMemCopy &a, const MTankInMemCopy &b) {
  71.     return a.date != b.date;
  72.   }
  73.   
  74.   friend int operator<(const MTankInMemCopy &a, const MTankInMemCopy &b) {
  75.     return a.date < b.date;
  76.   }
  77.   
  78. public:
  79.   CDate date;           // Unique data key 
  80.   INT32 object_address; // Object's address in the database file
  81.   INT32 class_id;       // Class ID number of the object 
  82. };
  83.  
  84. enum MTankDBItem { // Database items used in global database searches
  85.   YEAR,
  86.   COMMENTS
  87. };
  88.  
  89. // Variable used to count the number of object found during a search
  90. extern int ObjectsFound;
  91.  
  92. // Global data structures used to organize and store btree nodes
  93. extern DLList<MTankInMemCopy> MTankDB_SH_DLList; // Doubly Linked
  94. extern DLList<MTankInMemCopy> *dllist;           // Doubly Linked
  95. extern DNode<MTankInMemCopy> *dllistptr;         // DLList node pointer
  96. extern RBTree<MTankInMemCopy> MTankDB_SH_RBTree; // Red Black mem based tree
  97. extern RBTree<MTankInMemCopy> *rbtree;           // Red Black mem based tree
  98.  
  99. // SearchVisitFunc is a function pointer used for a visit action that
  100. // searches each btree node for a specified string database item. All
  101. // visit actions define a procedure used to process node data.
  102. typedef void (*SearchVisitFunc)(CachePointer Node, int item, MarineTank &mtank,
  103.                 UString &str, int find_all); 
  104.  
  105. // Recursive functions used to search the btree.
  106. void BtreeSearch(CachePointer t, SearchVisitFunc Visit, int item,
  107.                  MarineTank &mtank, UString &str, int find_all = 0); 
  108.  
  109. // Visit functions used by the btree iterator
  110. void LoadKeys(CachePointer n);
  111. void BtreeNodeSearch(CachePointer n, int item, MarineTank &mtank, UString &str,
  112.              int find_all);
  113.  
  114. #endif  // __MTANK_SH_HPP__ 
  115. // ----------------------------------------------------------- //
  116. // ------------------------------- //
  117. // --------- End of File --------- //
  118. // ------------------------------- //
  119.  
  120.